home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / gsbittab.h < prev    next >
C/C++ Source or Header  |  1996-12-30  |  3KB  |  74 lines

  1. /* Copyright (C) 1995, 1996 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gsbittab.h */
  20. /* Interface to tables for bit operations */
  21.  
  22. /*
  23.  * Generate tables for transforming 2, 4, 6, or 8 bits.
  24.  */
  25. #define btab2_(v0,v2,v1)\
  26.   v0,v1+v0,v2+v0,v2+v1+v0
  27. #define bit_table_2(v0,v2,v1) btab2_(v0,v2,v1)
  28. #define btab4_(v0,v8,v4,v2,v1)\
  29.   btab2_(v0,v2,v1), btab2_(v4+v0,v2,v1),\
  30.   btab2_(v8+v0,v2,v1), btab2_(v8+v4+v0,v2,v1)
  31. #define bit_table_4(v0,v8,v4,v2,v1) btab4_(v0,v8,v4,v2,v1)
  32. #define btab6_(v0,v20,v10,v8,v4,v2,v1)\
  33.   btab4_(v0,v8,v4,v2,v1), btab4_(v10+v0,v8,v4,v2,v1),\
  34.   btab4_(v20+v0,v8,v4,v2,v1), btab4_(v20+v10+v0,v8,v4,v2,v1)
  35. #define bit_table_6(v0,v20,v10,v8,v4,v2,v1) btab6_(v0,v20,v10,v8,v4,v2,v1)
  36. #define bit_table_8(v0,v80,v40,v20,v10,v8,v4,v2,v1)\
  37.   btab6_(v0,v20,v10,v8,v4,v2,v1), btab6_(v40+v0,v20,v10,v8,v4,v2,v1),\
  38.   btab6_(v80+v0,v20,v10,v8,v4,v2,v1), btab6_(v80+v40+v0,v20,v10,v8,v4,v2,v1)
  39.  
  40. /*
  41.  * byte_reverse_bits[B] = the byte B with the order of bits reversed.
  42.  */
  43. extern const byte byte_reverse_bits[256];
  44.  
  45. /*
  46.  * byte_right_mask[N] = a byte with N trailing 1s, 0 <= N <= 8.
  47.  */
  48. extern const byte byte_right_mask[9];
  49.  
  50. /*
  51.  * byte_count_bits[B] = the number of 1-bits in a byte with value B.
  52.  */
  53. extern const byte byte_count_bits[256];
  54.  
  55. /*
  56.  * byte_bit_run_length_N[B], for 0 <= N <= 7, gives the length of the
  57.  * run of 1-bits starting at bit N in a byte with value B,
  58.  * numbering the bits in the byte as 01234567.  If the run includes
  59.  * the low-order bit (i.e., might be continued into a following byte),
  60.  * the run length is increased by 8.
  61.  */
  62. extern const byte
  63.   byte_bit_run_length_0[256], byte_bit_run_length_1[256],
  64.   byte_bit_run_length_2[256], byte_bit_run_length_3[256],
  65.   byte_bit_run_length_4[256], byte_bit_run_length_5[256],
  66.   byte_bit_run_length_6[256], byte_bit_run_length_7[256];
  67.  
  68. /*
  69.  * byte_bit_run_length[N] points to byte_bit_run_length_N.
  70.  * byte_bit_run_length_neg[N] = byte_bit_run_length[-N & 7].
  71.  */
  72. extern const byte *byte_bit_run_length[8];
  73. extern const byte *byte_bit_run_length_neg[8];
  74.